You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Python Tracker used to support the txn_id field. It was a random 6-digit number attached to each event, used for deduplication. You can see the implementation in the first version of the Python Tracker here.
We decided that with only 6 digits, the risk of two events having the same txn_id was still too high. For this reason, we have deprecated this field and we are replacing it with an "event ID" in all our trackers. The event ID is a version 4 UUID, making collisions much less likely. Here is where we add it in the latest Python Tracker version.
I have altered our documentation to make it clear that the txn_id field is deprecated - sorry for the confusion!
Well, this makes things little more different for us. Since we plan to use this param as identifier of "active window session id" along with network user id. We will stick with event_id for now. Thank you for clarification.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi,
I added support to python client library for
tnx_idfield which is described as canonical field, but wasn't implemented in client library.Also, I fixed some documentation indentation issues.